C# |
---|
public static String Base64ToText(String base64Text) |
C# |
---|
using LJCNetCommon; // Decodes a Base64 value to a Text value. private static void Base64ToText() { // Setup string base64 = NetCommon.TextToBase64("Text"); // Decodes a Base64 string to Text. string text = NetCommon.Base64ToText(base64); } |